From 9255c2d110149508c482f9cfcbdc4caa3fd9152e Mon Sep 17 00:00:00 2001 From: Kristian Rietveld Date: Fri, 15 Sep 2006 11:22:03 +0000 Subject: [PATCH] actually directly return after handling column button focus; we disable 2006-09-15 Kristian Rietveld * gtk/gtktreeview.c (gtk_tree_view_key_press): actually directly return after handling column button focus; we disable wrap around with this (which actually happened via a really weird code path). (Michael Natterer) --- ChangeLog | 7 +++++++ gtk/gtktreeview.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ac6dfee447..5dd4119e09 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-09-15 Kristian Rietveld + + * gtk/gtktreeview.c (gtk_tree_view_key_press): actually directly + return after handling column button focus; we disable wrap around + with this (which actually happened via a really weird code path). + (Michael Natterer) + 2006-09-15 Kristian Rietveld * gtk/gtktreeview.c (gtk_tree_view_key_press): make column resizing diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c index 941b9c74b9..378bd63629 100644 --- a/gtk/gtktreeview.c +++ b/gtk/gtktreeview.c @@ -5252,7 +5252,7 @@ gtk_tree_view_key_press (GtkWidget *widget, return TRUE; } - break; + return TRUE; } width += GTK_TREE_VIEW_COLUMN (list->data)->width; list = list->next; -- 2.30.2